SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

[JS Behind The Scene] 從 for loop 理解 scope 和 event loop 的運作機制

[JS Behind The Scene] 從 for loop 理解 scope 和 event loop 的運作機制

什麼是 scope?

什麼是 scope?

[ MTR04 ]  程式基礎(下)

[ MTR04 ] 程式基礎(下)






留言討論